home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / MCOMPILE.HLP < prev    next >
Text File  |  1988-01-11  |  1KB  |  40 lines

  1. \ MCOMPILE.HLP  Memory compiler                         by Tom Zimmer
  2.  
  3.  
  4. memfile
  5.         Handle for what file was last edited, and is in memory.
  6.  
  7. mload\s
  8.         Boolean flag. Was "\s" executed while loading from memory?
  9.  
  10. mlineread       ( n1 --- )
  11.         Read line n1 from the edit memory buffer to the output buffer.
  12.  
  13. mload           ( --- )
  14.         Load the current file that is in memory. This word gets
  15.         plugged into the defered word LOADER.
  16.  
  17. ?readfile       ( --- )
  18.         Initialize the editor overlay segments if needed, and then
  19.         read in the currently open file to the edit buffer if it
  20.         is not already in the buffer.
  21.  
  22. ok              ( --- )
  23.         Compile the file currently open.
  24.  
  25. \s              ( --- )
  26.         Redefinition of \s, to allow it to work with memory loaded
  27.         files.
  28.  
  29. fload           ( | name --- )
  30.         Load the file "name". Open the file and then compiles it.
  31.  
  32. ed              ( --- )
  33.         Enter the editor on the currently open file. The file will
  34.         be read into memory if needed, or if it is already present,
  35.         then the copy in memory will be used.
  36.  
  37. edit            ( n1 --- )
  38.         Enter the editor on the current file at line n1.
  39.  
  40.